//1.4 - Pirate Musketeer Game - Dirk Henkemans - //Prima Publishing #include #include using namespace std; //introduces namespace std int main( void ) //tells a pirate story { int buddies; int afterBattle; string exit; cout<< "You are a pirate and are walking" << " along in the crime filled " << endl << "city of Havana (in 1789). " << "How many of your pirate buddies "<>buddies; //calculates the amount of pirates left after the battle. afterBattle = 1 + buddies - 10; cout<< "Suddenly 10 musketeers jump out " << "from the local tavern and " <>exit; return 0; }